C# temporary files

89

C# temporary files -

// Creates a file and returns the path.
var path = Path.GetTempFileName();
File.WriteAllText(path, "Hello, World!");

Comments

Submit
0 Comments